a1df132fcec0793a78b1a851eec4ec18b1bca6b2,src/main/java/toughasnails/init/ModPotions.java,ModPotions,init,#,12

Before Change


{
    public static void init()
    {
        hypothermia = new PotionHypothermia(24).setPotionName("potion.hypothermia").func_188413_j();
        hyperthermia = new PotionHyperthermia(25).setPotionName("potion.hyperthermia").func_188413_j();
        thirst = new PotionThirst(26).setPotionName("potion.thirst").func_188413_j();
    }

After Change


{
    public static void init()
    {
        hypothermia = registerPotion("hypothermia", new PotionHypothermia(24).setPotionName("potion.hypothermia").func_188413_j());
        hyperthermia = registerPotion("hyperthermia", new PotionHyperthermia(25).setPotionName("potion.hyperthermia").func_188413_j());
        thirst = registerPotion("thirst", new PotionThirst(26).setPotionName("potion.thirst").func_188413_j());
    }